align mintlify nav with current docs structure#2526
Conversation
| "pages": [ | ||
| "capabilities/teleoperation/hosted" | ||
| ] | ||
| } |
There was a problem hiding this comment.
Missing file:
capabilities/teleoperation/hosted
The nav entry capabilities/teleoperation/hosted has no corresponding source file — docs/capabilities/teleoperation/ does not exist at all. Mintlify will render a broken/404 entry in the sidebar for this group, and clicking it will return a page-not-found error.
| "agents/testing", | ||
| "coding-agents/index", | ||
| "coding-agents/style", | ||
| "coding-agents/code-quality-rules", |
| @@ -49,6 +50,7 @@ | |||
| { | |||
| "group": "Data streams", | |||
| "pages": [ | |||
| "usage/data_streams/readme", | |||
There was a problem hiding this comment.
README filename case mismatch may break page resolution
The three new entries usage/readme, usage/data_streams/readme, and usage/sensor_streams/readme reference lowercase readme, but the actual files on disk are docs/usage/README.md, docs/usage/data_streams/README.md, and docs/usage/sensor_streams/README.md (all uppercase). On the case-sensitive Linux filesystem where Mintlify typically deploys, these lookups will fail to resolve the file, resulting in 404s. The other pages in this codebase all use lowercase filenames consistently — consider renaming the three README.md files to readme.md.
| "group": "Coding agents", | ||
| "pages": [ | ||
| "agents/index", | ||
| "agents/style", | ||
| "agents/testing", | ||
| "coding-agents/index", | ||
| "coding-agents/style", | ||
| "coding-agents/code-quality-rules", | ||
| "coding-agents/testing", | ||
| "coding-agents/worktrees", | ||
| { | ||
| "group": "Authoring agent docs", | ||
| "pages": [ | ||
| "agents/docs/index", | ||
| "agents/docs/codeblocks", | ||
| "agents/docs/doclinks" | ||
| "coding-agents/docs/index", | ||
| "coding-agents/docs/codeblocks", | ||
| "coding-agents/docs/doclinks" | ||
| ] | ||
| } | ||
| ] |
There was a problem hiding this comment.
No redirects from old
agents/* paths to new coding-agents/* paths
The group was renamed from agents to coding-agents and all page paths updated accordingly, but no redirects entries have been added to docs.json for the old URLs (agents/index, agents/style, agents/testing, agents/docs/index, etc.). Anyone who bookmarked or linked to those pages will hit 404s. Mintlify supports "redirects": [{"source": "/agents/index", "destination": "/coding-agents/index"}] entries at the top level of docs.json.
b3eee54 to
b47e1f8
Compare
❌ 2 Tests Failed:
View the full list of 2 ❄️ flaky test(s)
To view more test analytics, go to the Test Analytics Dashboard |
leshy
left a comment
There was a problem hiding this comment.
IDK if coding agents stuff belongs on mintlify, probably not but approving and you can decide
added mintlify pages that were missing in docs.json